home *** CD-ROM | disk | FTP | other *** search
Makefile | 1992-05-20 | 1.1 KB | 56 lines |
- #
- # Copyright (C) 1991 Texas Instruments Incorporated.
- # Copyright (C) 1992 General Electric Company.
- #
- # Permission is granted to any individual or institution to use, copy, modify,
- # and distribute this software, provided that this complete copyright and
- # permission notice is maintained, intact, in all copies and supporting
- # documentation.
- #
- # Texas Instruments Incorporated and General Electric Company
- # provides this software "as is" without express or implied warranty.
- #
-
- DOCS = Association AVL_Tree \
- Bignum Binary_Node Binary_Tree Bit_Set \
- calendar country char Complex COOL \
- D_Node Date_Time \
- Gen_String \
- Hash_Table \
- List \
- Matrix \
- N_Node N_Tree \
- Pair \
- Queue \
- Random Range Rational Regexp \
- Set Stack String \
- Timer timezone \
- Vector
-
- all: doc
-
- doc:
- @for i in $(DOCS); do \
- echo "nroff -man $$i.3T > $$i.txt"; \
- (nroff -man $$i.3T > $$i.txt); \
- done
-
- troff:
- - $(RM) manual.troff
- @for i in $(DOCS); do \
- echo "troff -t -man $$i.3T >> manual.troff; \
- (troff -t -man $$i.3T >> manual.troff); \
- done
-
- print: troff
- lpr manual.troff
-
- allclean clean:
- - $(RM) *.txt manual.troff
-
- alllink link:
-
- alldepend depend:
-
-
-